body {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  background-color: #96A9C6;
}

.wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 92px;
}

.menu-toggle {
  position: absolute;
  left: -9999px;
}

.menu-icon {
  width: 58px;
  height: 58px;
  display: inline-block;
  padding-top: 14px;
  border-radius: 50%;
  background: #a4b4cf;
  cursor: pointer;
  text-align: center;
}

.menu-icon span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 0 auto 6px;
  border-radius: 999px;
  background: #3c61a2;
}

.site-nav {
  position: absolute;
  top: 70px;
  right: 0;
  width: 260px;
  padding: 14px;
  border-radius: 22px;
  background: #a4b4cf;
  display: none;
}

.site-nav ul {
  margin: 0;
  padding-left: 22px;
}

.site-nav li {
  margin: 12px 0;
}

.site-nav a {
  text-decoration: none;
  color: #3c61a2;
  font-size: 18px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.menu-toggle:checked + .menu-icon + .site-nav {
  display: block;
}

.contact-page {
  padding: 40px 0 70px 0;
}

.contact-card {
  background-color: #FDFCE5;
  border: 2px solid #3c61a2;
  border-radius: 24px;
  padding: 32px;
  box-sizing: border-box;
  color: #3c61a2;
}

.contact-card h1 {
  margin-top: 0;
  font-size: 48px;
  color: #3c61a2;
}

.contact-card p {
  font-size: 20px;
  line-height: 1.8;
  color: #3c61a2;
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 240px;
  margin-bottom: 18px;
  padding: 14px 18px;
  text-decoration: none;
  color: #3c61a2;
  background-color: #ffffff;
  border: 2px solid #3c61a2;
  border-radius: 20px;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.social-links img {
  width: 28px;
  height: 28px;
  display: block;
}

.mail-icon {
  width: 28px;
  text-align: center;
  font-size: 28px;
  line-height: 1;
}

.site-footer {
  padding: 20px 0;
  margin-top: 40px;
}

.footer-wrap {
  background-color: #FDFCE5;
  border: 2px solid #3c61a2;
  border-radius: 24px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.footer-wrap p {
  margin: 5px 0;
  color: #3c61a2;
  font-size: 18px;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}